home *** CD-ROM | disk | FTP | other *** search
/ Internet Surfer: Getting Started / Internet Surfer - Getting Started (Wayzata Technology)(7231)(1995).bin / pc / textfile / faqs / audio / diff next >
Encoding:
Internet Message Format  |  1995-01-01  |  4.9 KB

  1. Xref: bloom-picayune.mit.edu alt.binaries.sounds.misc:3805 alt.binaries.sounds.d:1998 comp.dsp:4887 news.answers:4659
  2. Path: bloom-picayune.mit.edu!enterpoop.mit.edu!ira.uka.de!math.fu-berlin.de!mailgzrz.TU-Berlin.DE!news.netmbx.de!Germany.EU.net!mcsun!sun4nl!cwi.nl!guido
  3. From: guido@cwi.nl (Guido van Rossum)
  4. Newsgroups: alt.binaries.sounds.misc,alt.binaries.sounds.d,comp.dsp,news.answers
  5. Subject: Changes to: FAQ: Audio File Formats (version 2.9)
  6. Message-ID: <audio-diff_724600938@charon.cwi.nl>
  7. Date: 17 Dec 92 14:02:47 GMT
  8. Expires: 14 Jan 93 14:02:18 GMT
  9. Sender: news@cwi.nl
  10. Reply-To: guido@cwi.nl
  11. Followup-To: alt.binaries.sounds.d,comp.dsp
  12. Lines: 101
  13. Approved: news-answers-request@MIT.Edu
  14. Supersedes: <audio-diff_722270826@charon.cwi.nl>
  15.  
  16. Archive-name: audio-fmts/diff
  17. Submitted-by: Guido van Rossum <guido@cwi.nl>
  18. Version: 2.9
  19. Last-modified: 17-Dec-1992
  20.  
  21. *** A2.8    Fri Nov 20 15:45:24 1992
  22. --- A2.9    Thu Dec 17 15:00:59 1992
  23. ***************
  24. *** 46,47 ****
  25. --- 46,48 ----
  26.     U-LAW and A-LAW definitions
  27. +   AVR File Format
  28.     
  29. ***************
  30. *** 68,69 ****
  31. --- 69,76 ----
  32.   
  33. + NEWSFLASH: This FAQ is now also available in distributed hypertext
  34. + form!  If you have a WWW browser and direct Internet access you can
  35. + point it to "http://voorn.cwi.nl/audio-formats/a00.html".  (WWW is the
  36. + CERN World-Wide Web initiative; for more info, telnet or ftp to
  37. + info.cern.ch.)
  38.   Send updates, comments and questions to <guido@cwi.nl>; flames to
  39. ***************
  40. *** 156,158 ****
  41.                   rate; the latter is precisely 22254.545454545454 but
  42. !                 usually misquoted as 22000.
  43.   
  44. --- 163,167 ----
  45.                   rate; the latter is precisely 22254.545454545454 but
  46. !                 usually misquoted as 22000.  (Historical note:
  47. !                 22254.5454... was the horizontal scan rate of the
  48. !                 original 128k Mac.)
  49.   
  50. ***************
  51. *** 208,210 ****
  52.   32 kbits/sec ADPCM algorithm is available by ftp from ftp.cwi.nl as
  53. ! /pub/adpcm.shar.
  54.   
  55. --- 217,221 ----
  56.   32 kbits/sec ADPCM algorithm is available by ftp from ftp.cwi.nl as
  57. ! /pub/adpcm.shar.  (** NOTE: if you are using v1.0, you should get
  58. ! v1.1, released 17-Dec-1992, which fixes a serious bug -- the quality
  59. ! of v1.1 is claimed to be better than uLAW **)
  60.   
  61. ***************
  62. *** 270,271 ****
  63. --- 281,283 ----
  64.   Atari STe,TT        8               50k                  2
  65. + Atari Falcon 030    16              50k                  8(st)
  66.   Amiga               8               ~29k                 4(st)
  67. ***************
  68. *** 306,307 ****
  69. --- 318,326 ----
  70.   
  71. + Here's some info about the newest Atari machine, the Falcon030.  This
  72. + machine has stereo 16 bit CODECs and a 32 MHz Motorola 56001 that can
  73. + handle 8 channels of 16 bit audio, up to 50 khz/channel with
  74. + simultaneous playback and record.  The Falcon DMA sound engine is also
  75. + compatible with the 8 bit stereo DMA used on the STe and TT. All of
  76. + these systems use signed data.
  77.   On the NeXT, the Motorola 56001 DSP chip is programmable and you can
  78. ***************
  79. *** 1477,1478 ****
  80. --- 1496,1529 ----
  81.   
  82. + ------------------------------------------------------------------------
  83. + AVR File Format
  84. + ---------------
  85. + From: hyc@hanauma.Jpl.Nasa.Gov (Howard Chu)
  86. + A lot of PD software exists to play Mac .snd files on the ST. One other
  87. + format that seems pretty popular (used by a number of commercial packages)
  88. + is the AVR format (from Audio Visual Research). This format has a 128 byte
  89. + header that looks like this:
  90. +         char magic[4]="2BIT";
  91. +         char name[8];           /* null-padded sample name */
  92. +         short mono;             /* 0 = mono, 0xffff = stereo */
  93. +         short rez;              /* 8 = 8 bit, 16 = 16 bit */
  94. +         short sign;             /* 0 = unsigned, 0xffff = signed */
  95. +         short loop;             /* 0 = no loop, 0xffff = looping sample */
  96. +         short midi;             /* 0xffff = no MIDI note assigned,
  97. +                                    0xffXX = single key note assignment
  98. +                                    0xLLHH = key split, low/hi note */
  99. +         long rate;              /* sample frequency in hertz */
  100. +         long size;              /* sample length in bytes or words (see rez) */
  101. +         long lbeg;              /* offset to start of loop in bytes or words.
  102. +                                    set to zero if unused. */
  103. +         long lend;              /* offset to end of loop in bytes or words.
  104. +                                    set to sample length if unused. */
  105. +         short res1;             /* Reserved, MIDI keyboard split */
  106. +         short res2;             /* Reserved, sample compression */
  107. +         short res3;             /* Reserved */
  108. +         char ext[20];           /* Additional filename space, used
  109. +                                    if (name[7] != 0) */
  110. +         char user[64];          /* User defined. Typically ASCII message. */
  111.   ------------------------------------------------------------------------
  112.